Footer Navigation

Footer navigation is used as secondary navigation giving access to links that don’t fit within the main navigation, or include a simplified site map of links.

Visitors who can’t find what they’re looking for in the primary navigation menu often look at footer navigation afterward.

Display as a single horizontal bar when there are few enough links otherwise display in columns.

If there is a significant number of links, divide into sets with headings.

ARIA

<footer> <nav aria-label="Site Map"> <ul role="menubar"> <li role="none"> <a href="news.html">News</a> </li> <li role="none"> <a href="events.html">Events</a> </li> <li role="none"> <a href="customers.html">Customers</a> </li> <li role="none"> <a href="careers.html">Careers</a> </li> <li role="none"> <a href="cookies.html">Cookie Policy</a> </li> <li role="none"> <a href="privacy.html">Privacy Policy</a> </li> </ul> </nav> </footer>

To Do